(C) 1996 AROS - The Amiga Replacement OS


NAME
#include <proto/utility.h>
BOOL TagInArray()
SYNOPSIS
Tag tagValue
Tag * tagArray

LOCATION
In UtilityBase at offset 15
FUNCTION
Determines whether the value tagValue exists in an array of Tags pointed to by tagArray. This array must be contiguous, and must be terminated by TAG_DONE.

This is an array of Tags (ie: Tag tagArray[]), not an array of TagItems (ie: struct TagItem tagArray[]).

INPUTS
tagValue
The value of the Tag to search for.
tagArray
The ARRAY of Tag's to scan through.
RESULT
TRUE if tagValue exists in tagArray FALSE otherwise

NOTES
EXAMPLE
BUGS
SEE ALSO
<utility/tagitem.h>, FilterTagItems()
INTERNALS
HISTORY
27.01.1997 ldp
Polish
10.12.1996 aros
Moved #include into first column to allow makedepend to see it.
24.10.1996 aros
Use the official AROS macros over the __AROS versions.
22.10.1996 aros
Some more utility.library functions.